Part Number Hot Search : 
C20CT HVP10 V375B ISD2351 RFXF0007 PAT40012 INY13 RB715WTL
Product Description
Full Text Search
 

To Download NHD-0216K1Z-FSFBW-REV1 Datasheet File

  If you can't view the Datasheet, Please click here to try to view without PDF Reader .  
 
 


  Datasheet File OCR Text:
 

NHD0216K1ZFS(RGB)FBWREV1
CharacterLiquidCrystalDisplayModule
NHD 0216 K1Z FS RGB F B W REV1 NewhavenDisplay 2linesx16characters Model Transflective SidebacklightRED,GREEN,BLUE FSTN(+) 6:00view WideTemperature(20C~+70C) Revision1 RoHSCompliant






NewhavenDisplayInternational,Inc.
2511TechnologyDrive,Suite101 ElginIL,60124 Ph:8478448795 Fax:8478448796
www.newhavendisplay.com nhtech@newhavendisplay.com nhsales@newhavendisplay.com [1]

DocumentRevisionHistory
Revision 0 1 2 3 4 * * * * * * Date 1/23/2006 6/4/2009 9/16/2009 10/23/2009 1/7/2010 Description InitialRelease UserGuideReformat BacklightRevision BlockDiagram/Initialization/electricalRevision Opticalrevised Changedby BE BE BE
FunctionsandFeatures
2linesx16characters Builtincontroller (SPLC780Dorequivalent) Red,GreenandBlueBacklights +5.0Vpowersupply 1/16duty,1/5bias RoHSCompliant
[2]
Mechanical Drawing
Notes: 1.) Driver Method: 1/16 duty, 1/5 bias, VDD5.0V VLCD 4.5V 2.) Display Type: FSTN/Positive/6:00 View 3.) Operating Temp: -20 ~70 /Storage Temp: -30 ~80 4.) Backlight Type: Side/R,G,B 5.) Driver: SPLC780D/4bit or 8bit MPU 6.) RoHS Compliant
LED-
NHD-0216K1Z-FS(RGB)-FBW-REV1
Newhaven Display
PinDescriptionandWiringDiagram
PinNo. Symbol 1 2 3 4 5 6 710 1114 15 16 17 18
VSS VDD V0
RS R/W E DB0-DB3 DB4-DB7 LED LEDRED LEDGREEN LEDBLUE
External Connection PowerSupply PowerSupply Adj.PowerSupply MPU MPU MPU MPU MPU PowerSupply PowerSupply PowerSupply PowerSupply
FunctionDescription Ground Powersupplyforlogic(+5.0V) Powersupplyforcontrast(approx.0.5V) Registerselect signalRS=1:DATARS=0:COMMAND Read/WriteselectsignalRW=1:READRW=0:WRITE OperationenablesignalFallingEdgeTriggered Fourloworderbidirectionalthreestatedatabuslines. Thesefourarenotusedduring4bitoperation Fourhighorderbidirectionalthreestatedatabuslines. GroundforBacklight Powersupplyforbacklight(2.2V) Powersupplyforbacklight(3.3V) Powersupplyforbacklight(3.3V)
RecommendedLCDconnector:2.54mmpitch1x18pinheader Backlightconnector:Pins1518ofLCDconnectorMateswith:
[4]
ElectricalCharacteristics
Item OperatingTemperatureRange StorageTemperatureRange SupplyVoltage SupplyCurrent SupplyforLCD(contrast) "H"Levelinput "L"Levelinput "H"Leveloutput "L"Leveloutput BacklightSupplyVoltage-RED BacklightSupplyCurrent-RED BacklightSupplyVoltage-GREEN BacklightSupplyCurrent-GREEN BacklightSupplyVoltage-BLUE BacklightSupplyCurrent-BLUE Symbol Top Tst VDD IDD VDDV0 Vih Vil Voh Vol Vled Iled Vled Iled Vled Iled Condition Min. 20 30 4.7 2.2 0 2.4 Typ. 5.0 1.5 4.5 2.2 20 3.3 20 3.3 20 Max. +70 +80 5.5 2.5 VDD 0.6 0.4 30 30 30 Unit C C V mA V V V V V V mA V mA V mA
Ta=25C
Ta=25C Ta=25C,Vled=2.2V Ta=25C Ta=25C,Vled=3.3V Ta=25C Ta=25C,Vled=3.3V

OpticalCharacteristics
Item ViewingAngleVertical(Top) ViewingAngleVertical(bottom) ViewingAngleHorizontal(left) ViewingAngleHorizontal(right) ContrastRatio ResponseTime(rise) ResponseTime(fall) Symbol AV AV AH AH Cr Tr Tf Condition Cr 3 Cr 3 Cr 3 Cr 3 Min. 3 Typ. 20 50 30 30 5 150 150 Max. 250 250 Unit ms ms

ControllerInformation
BuiltinSPLC780D001.Downloadspecificationathttp://www.newhavendisplay.com/app_notes/SPLC780D.pdf

[5]
TableofCommands

[6]

TimingCharateristics

[7]

[8]

BuiltinFontTable
[9]

ExampleInitializationProgram
4-bit Initialization: /**********************************************************/ void command(char i) { P1 = i; //put data on output Port D_I =0; //D/I=LOW : send instruction R_W =0; //R/W=LOW : Write Nybble(); //Send lower 4 bits i = i<<4; //Shift over by 4 bits P1 = i; //put data on output Port Nybble(); //Send upper 4 bits } /**********************************************************/ void write(char i) { P1 = i; //put data on output Port D_I =1; //D/I=HIGH : send data R_W =0; //R/W=LOW : Write Nybble(); //Clock lower 4 bits i = i<<4; //Shift over by 4 bits P1 = i; //put data on output Port Nybble(); //Clock upper 4 bits } /**********************************************************/ void Nybble() { E = 1; Delay(1); //enable pulse width >= 300ns E = 0; //Clock enable: falling edge } /**********************************************************/ void init() { P1 = 0; P3 = 0; Delay(100); //Wait >15 msec after power is applied P1 = 0x30; //put 0x30 on the output port Delay(30); //must wait 5ms, busy flag not available Nybble(); //command 0x30 = Wake up Delay(10); //must wait 160us, busy flag not available Nybble(); //command 0x30 = Wake up #2 Delay(10); //must wait 160us, busy flag not available Nybble(); //command 0x30 = Wake up #3 Delay(10); //can check busy flag now instead of delay P1= 0x20; //put 0x20 on the output port Nybble(); //Function set: 4-bit interface command(0x28); //Function set: 4-bit/2-line command(0x10); //Set cursor command(0x0F); //Display ON; Blinking cursor command(0x06); //Entry Mode set } /**********************************************************/
[10]

8-bit Initialization: /**********************************************************/ void command(char i) { P1 = i; //put data on output Port D_I =0; //D/I=LOW : send instruction R_W =0; //R/W=LOW : Write E = 1; Delay(1); //enable pulse width >= 300ns E = 0; //Clock enable: falling edge } /**********************************************************/ void write(char i) { P1 = i; //put data on output Port D_I =1; //D/I=LOW : send data R_W =0; //R/W=LOW : Write E = 1; Delay(1); //enable pulse width >= 300ns E = 0; //Clock enable: falling edge } /**********************************************************/ void init() { E = 0; Delay(100); //Wait >15 msec after power is applied command(0x30); //command 0x30 = Wake up Delay(30); //must wait 5ms, busy flag not available command(0x30); //command 0x30 = Wake up #2 Delay(10); //must wait 160us, busy flag not available command(0x30); //command 0x30 = Wake up #3 Delay(10); //must wait 160us, busy flag not available command(0x38); //Function set: 8-bit/2-line command(0x10); //Set cursor command(0x0c); //Display ON; Cursor ON command(0x06); //Entry mode set } /**********************************************************/

[11]
QualityInformation
TestItem
HighTemperaturestorage LowTemperaturestorage HighTemperature Operation LowTemperature Operation HighTemperature/ HumidityOperation ThermalShockresistance
ContentofTest
Endurancetestapplyingthehigh storagetemperatureforalongtime. Endurancetestapplyingthelowstorage temperatureforalongtime. Endurancetestapplyingtheelectricstress (voltage¤t)andthehighthermal stressforalongtime. Endurancetestapplyingtheelectricstress (voltage¤t)andthelowthermal stressforalongtime. Endurancetestapplyingtheelectricstress (voltage¤t)andthehighthermal withhighhumiditystressforalongtime. Endurancetestapplyingtheelectricstress (voltage¤t)duringacycleoflow andhighthermalstress. Endurancetestapplyingvibrationto simulatetransportationanduse.
TestCondition
+80C,48hrs 30C,48hrs +70C48hrs
Note
2 1,2 2
20C,48hrs
1,2
+40C, 90%RH, 48hrs
1,2
Vibrationtest
Staticelectricitytest
Endurancetestapplyingelectricstatic discharge.
0C,30min>+25C,5min> +50C,30min=1cycle 10cycles 1055Hz,15mmamplitude. 60secineachof3directions X,Y,Z For15minutes VS=800V,RS=1.5k,CS=100pF Onetime
3
Note1:Nocondensationtobeobserved. Note2:Conductedafter4hoursofstorageat25C,0%RH. Note3:Testperformedonproductitself,notinsideacontainer.

PrecautionsforusingLCDs/LCMs
SeePrecautionsatwww.newhavendisplay.com/specs/precautions.pdf
WarrantyInformationandTerms&Conditions
http://www.newhavendisplay.com/index.php?main_page=terms
[12]


▲Up To Search▲   

 
Price & Availability of NHD-0216K1Z-FSFBW-REV1

All Rights Reserved © IC-ON-LINE 2003 - 2022  

[Add Bookmark] [Contact Us] [Link exchange] [Privacy policy]
Mirror Sites :  [www.datasheet.hk]   [www.maxim4u.com]  [www.ic-on-line.cn] [www.ic-on-line.com] [www.ic-on-line.net] [www.alldatasheet.com.cn] [www.gdcy.com]  [www.gdcy.net]


 . . . . .
  We use cookies to deliver the best possible web experience and assist with our advertising efforts. By continuing to use this site, you consent to the use of cookies. For more information on cookies, please take a look at our Privacy Policy. X